home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 November / Electronic Clipper 1998-11.iso / Idea Source® / teaser.dir / 00075_Script_flashhand < prev    next >
Text File  |  1998-08-25  |  322b  |  26 lines

  1. on mousewithin me
  2.   global flash
  3.   if flash=0 then
  4.     cursor 280
  5.   end if
  6. end
  7.  
  8. on mouseleave me
  9.   global flash
  10.   if flash=0 then
  11.     cursor -1
  12.   end if
  13. end
  14.  
  15. on mousedown
  16.   global flash
  17.   if flash=1 then 
  18.     puppetsound(3) "button"
  19.   else
  20.     puppetsound(3) "button"
  21.     cursor -1
  22.   end if
  23. end
  24.  
  25.  
  26.